JOIN.RUN_SILENT Function

Syntax

C join.run_silent(C layoutname [,C master_table_filter [,C transaction_table_filter [,* arguments ]]])

Arguments

layoutname

The name of a previously created join operation.

master_table_filter

Optional. Default = ".T." (All records). A character filter expression that evaluates to a logical value and selects the records from the master table.

transaction_table_filter

Optional. Default = ".T." (All records). A character filter expression that evaluates to a logical value and selects the records from the transaction table.

arguments

*

Description

Runs a Join operation without displaying a confirmation dialog box

Discussion

The JOIN.RUN_SILENT() method joins two tables using a previously defined join operation.

Example

The following example runs the saved Customer Join operation.

join.run("Customer Join", "Lastname > 'A'", "invoice_number > 1")

Limitations

Desktop applications only.

See Also